home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Presentations / Presentations ’91 / MPW Stand-Alone Libraries / Worksheet Commands < prev   
Text File  |  1991-06-21  |  1KB  |  23 lines

  1. ############################# M A K E S A ################################
  2. MABuild MakeSA
  3. asm SARuntime.a -w -case obj -o SARuntime.o
  4. buildprogram CPlusXCMD
  5. cp -y ":.non-debug files:MakeSA" :
  6.  
  7. MakeSA -help
  8. MakeSA         # Software Ventures' stand alone code tool
  9. MakeSA [option…] [file…] ≥ progress
  10.   -ct type     # Set resource type of non-main code segments  (default = DUDE)
  11.   -fc type     # Set file type of output file                 (default = rsrc)
  12.   -ft creator  # Set file creator of output file              (default = RSED)
  13.   -help        # Return this help text
  14.   -id integer  # Set the resource id of the main segment      (default = 128)
  15.   -mn name     # Set the resource name of the main segment    (default = '')
  16.   -mt type     # Set the resource type of the main segment    (default = DUDE)
  17.   -[No]P       # Report progress                              (default = NoP)
  18.   -[No]S       # Allow multi-segmented stand alone code       (default = NoS)
  19.   -[No]T       # Report elapsed time                          (default = NoT)
  20.  
  21. MakeSA -mn 'CPlusAlone' -mt 'XCMD' -S CPlusXCMD.xcmd
  22.  
  23.